scikit-learn: cross_validate
Evaluate metric(s) by cross-validation and also record fit/score times.
交差検証による指標の評価と、訓練/スコアにかかった時間を記録
返り値 scores
dict of float arrays of shape (n_splits,)
It allows specifying multiple metrics for evaluation.
「評価に複数の指標を指定できる」
リストやタプル、setとして、scoring引数に渡す
make_scorer関数で作って渡す例も見られる
It returns a dict containing fit-times, score-times (and optionally training scores as well as fitted estimators) in addition to the test score.
「テストスコアに加え、訓練時間、スコア時間(、オプションとして訓練された推論器はもちろん訓練スコア)を含む辞書を返す」
return_train_score引数
return_estimator引数